home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # This is rc.local.
- #
- # This file does everything which is local to the current machine.
- #
-
- /bin/echo -n "starting local daemons:"
-
- # Start up the printer daemon.
-
- if [ -f /usr/ucb/lpd.ttp ] ; then
- /usr/ucb/lpd > /dev/null 2>&1 &
- /bin/echo -n " printer"
- fi
-
- /bin/echo "."
-
- # Set the TT's console into auto-wrap mode. (Why does the TT start up without
- # auto-text-wrap?)
-
- /bin/echo -n "v"
-
- exit
-